Skip to main content

Links & navigation

With isolation arrival, Dev center apps are running inside an iframe. Because of this, the usual links don’t work as they worked before.

If you write something like this:

<a href="/assets/1/">go to my asset</a>

it will result in opening this link inside of the app’s iframe, instead of navigating on the current user’s page. It’ll look like a site inside of a site

app direct link issue

There’re two ways to solve this:

<a href="/assets/1/" target="_blank">go to my asset</a>

The component makes links work even when they are located within isolated apps inside an iframe

See TextLink component storybook for more details